home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Complete Mac Interactive / Macworld Complete Mac Interactive CD)(1994).iso / Software / Graphsoft / Arch Demo / Core.sit / MiniCad 5 Demo.rsrc / STR#_7026.txt < prev    next >
Text File  |  1994-04-15  |  903b  |  33 lines

  1. Returns TRUE if the Command key was pressed
  2.  
  3. Command : BOOLEAN;
  4.  
  5. Returns TRUE if the Shift key was pressed.
  6.  
  7. Shift : BOOLEAN;
  8.  
  9. Returns TRUE if the Caps Lock key was pressed.
  10.  
  11. CapsLock : BOOLEAN;
  12.  
  13. Returns TRUE if the Option key was pressed.
  14.  
  15. Option : BOOLEAN;
  16.  
  17. Returns the x, y coordinates of the mouse.  Does not wait for the user to click the mouse.
  18.  
  19. GetMouse(VAR x, y : REAL);
  20.  
  21. Returns TRUE if a non-modifier key has been continually pressed and also returns the ASCII code of the key that was pressed; otherwise it returns FALSE.
  22.  
  23. AutoKey(VAR asciiCode : INTEGER) : BOOLEAN;
  24.  
  25. Returns TRUE if a non-modifier key has been pressed and also returns the ASCII code of the key that was pressed; otherwise it returns FALSE.
  26.  
  27. KeyDown(VAR asciiCode : INTEGER) : BOOLEAN;
  28.  
  29. Returns TRUE if mouse is clicked and also returns the x, y location; otherwise it returns FALSE.
  30.  
  31. MouseDown(VAR x, y : REAL) : BOOLEAN;
  32.  
  33.